Compare commits
No commits in common. "e45c143afc8b010987d7af7f9c1bb5b8e95ffbec" and "83c9b7fe6e46fd2c3723ee9bd04f4495094939e4" have entirely different histories.
e45c143afc
...
83c9b7fe6e
@ -1,48 +0,0 @@
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
using Renis.Database;
|
||||
using Renis.Database.Models;
|
||||
|
||||
namespace Renis.Repositories;
|
||||
|
||||
public class CarRepository(ApplicationContext db) : ICarRepository
|
||||
{
|
||||
private readonly ApplicationContext _db = db;
|
||||
|
||||
public async Task<bool> AddCar(Car car)
|
||||
{
|
||||
_db.Cars.Add(car);
|
||||
return await Save();
|
||||
}
|
||||
|
||||
public async Task<bool> DeleteCar(Car car)
|
||||
{
|
||||
_db.Cars.Remove(car);
|
||||
return await Save();
|
||||
}
|
||||
|
||||
public async Task<Car?> GetCarById(long id)
|
||||
{
|
||||
return await _db.Cars.FirstOrDefaultAsync(x => x.Id == id);
|
||||
}
|
||||
|
||||
public async Task<Car?> GetCarByNumber(string number)
|
||||
{
|
||||
return await _db.Cars.FirstOrDefaultAsync(x => x.Number == number);
|
||||
}
|
||||
|
||||
public IQueryable<Car> GetCars()
|
||||
{
|
||||
return _db.Cars.AsQueryable();
|
||||
}
|
||||
|
||||
public async Task<bool> Save()
|
||||
{
|
||||
return await _db.SaveChangesAsync() > 0;
|
||||
}
|
||||
|
||||
public async Task<bool> UpdateCar(Car car)
|
||||
{
|
||||
_db.Cars.Update(car);
|
||||
return await Save();
|
||||
}
|
||||
}
|
@ -1,14 +0,0 @@
|
||||
using Renis.Database.Models;
|
||||
|
||||
namespace Renis.Repositories;
|
||||
|
||||
public interface ICarRepository
|
||||
{
|
||||
public Task<bool> AddCar(Car car);
|
||||
public Task<bool> UpdateCar(Car car);
|
||||
public Task<bool> DeleteCar(Car car);
|
||||
public Task<Car?> GetCarById(long id);
|
||||
public Task<Car?> GetCarByNumber(string number);
|
||||
public IQueryable<Car> GetCars();
|
||||
public Task<bool> Save();
|
||||
}
|
@ -1,14 +0,0 @@
|
||||
using Renis.Database.Models;
|
||||
|
||||
namespace Renis.Repositories;
|
||||
|
||||
public interface IUserPolisRepository
|
||||
{
|
||||
public Task<bool> AddUserPolis(UserPolis userPolis);
|
||||
public Task<bool> UpdateUserPolis(UserPolis userPolis);
|
||||
public Task<bool> DeleteUserPolis(UserPolis userPolis);
|
||||
public Task<UserPolis?> GetUserPolisById(long id);
|
||||
public Task<UserPolis?> GetUserPolisByUserIdAndPolisId(long userId, long polisId);
|
||||
public IQueryable<UserPolis> GetUserPolises();
|
||||
public Task<bool> Save();
|
||||
}
|
@ -1,48 +0,0 @@
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
using Renis.Database;
|
||||
using Renis.Database.Models;
|
||||
|
||||
namespace Renis.Repositories;
|
||||
|
||||
public class UserPolisRepository(ApplicationContext db) : IUserPolisRepository
|
||||
{
|
||||
private readonly ApplicationContext _db = db;
|
||||
|
||||
public async Task<bool> AddUserPolis(UserPolis userPolis)
|
||||
{
|
||||
_db.UserPolises.Add(userPolis);
|
||||
return await Save();
|
||||
}
|
||||
|
||||
public async Task<bool> UpdateUserPolis(UserPolis userPolis)
|
||||
{
|
||||
_db.UserPolises.Update(userPolis);
|
||||
return await Save();
|
||||
}
|
||||
|
||||
public async Task<bool> DeleteUserPolis(UserPolis userPolis)
|
||||
{
|
||||
_db.UserPolises.Remove(userPolis);
|
||||
return await Save();
|
||||
}
|
||||
|
||||
public async Task<UserPolis?> GetUserPolisById(long id)
|
||||
{
|
||||
return await _db.UserPolises.FirstOrDefaultAsync(x => x.Id == id);
|
||||
}
|
||||
|
||||
public async Task<UserPolis?> GetUserPolisByUserIdAndPolisId(long userId, long polisId)
|
||||
{
|
||||
return await _db.UserPolises.FirstOrDefaultAsync(x => x.UserId == userId && x.PolisId == polisId);
|
||||
}
|
||||
|
||||
public IQueryable<UserPolis> GetUserPolises()
|
||||
{
|
||||
return _db.UserPolises.AsQueryable();
|
||||
}
|
||||
|
||||
public async Task<bool> Save()
|
||||
{
|
||||
return await _db.SaveChangesAsync() > 0;
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user