public HashSet <string> DeleteValidation(vPassengerInvoice parameters) { return(ValidationMessages); }
public Task DeleteAsync(vPassengerInvoice parameters) { throw new NotImplementedException(); }
public async Task UpdateAsync(vPassengerInvoice entity) { await Uow.RegisterDirtyAsync(entity); await Uow.CommitAsync(); }
public HashSet <string> UpdateValidation(vPassengerInvoice entity) { return(ValidationMessages); }
public async Task AddAsync(vPassengerInvoice entity) { await Uow.RegisterNewAsync(entity); await Uow.CommitAsync(); }
public Task <object> GetBy(vPassengerInvoice parameters) { //return await Uow.Repository<vHotel>().FindByAsync(t => t. == parameters.UserId); throw new NotImplementedException(); }
public async Task <object> GetAsync(vPassengerInvoice parameters) { return(await Uow.Repository <vPassengerInvoice>().FindByAsync(t => t.UserId == parameters.UserId)); // throw new NotImplementedException(); }