예제 #1
0
 public Task DeleteAsync(VPost parameters)
 {
     throw new NotImplementedException();
 }
예제 #2
0
 public HashSet <string> DeleteValidation(VPost parameters)
 {
     return(ValidationMessages);
 }
예제 #3
0
        public async Task UpdateAsync(VPost entity)
        {
            await Uow.RegisterDirtyAsync(entity);

            await Uow.CommitAsync();
        }
예제 #4
0
 public HashSet <string> UpdateValidation(VPost entity)
 {
     return(ValidationMessages);
 }
예제 #5
0
        public async Task AddAsync(VPost entity)
        {
            await Uow.RegisterNewAsync(entity);

            await Uow.CommitAsync();
        }
예제 #6
0
 public Task <object> GetBy(VPost parameters)
 {
     throw new NotImplementedException();
 }