public Task DeleteAsync(PNRGeneration parameters)
 {
     throw new NotImplementedException();
 }
 public HashSet <string> DeleteValidation(PNRGeneration parameters)
 {
     return(ValidationMessages);
 }
        public async Task UpdateAsync(PNRGeneration entity)
        {
            await Uow.RegisterDirtyAsync(entity);

            await Uow.CommitAsync();
        }
 public HashSet <string> UpdateValidation(PNRGeneration entity)
 {
     return(ValidationMessages);
 }
        public async Task AddAsync(PNRGeneration entity)
        {
            await Uow.RegisterNewAsync(entity);

            await Uow.CommitAsync();
        }
 public Task <object> GetBy(PNRGeneration parameters)
 {
     throw new NotImplementedException();
 }