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

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

            await Uow.CommitAsync();
        }
Beispiel #6
0
 public Task <object> GetBy(vBook parameters)
 {
     throw new NotImplementedException();
 }
Beispiel #7
0
        public async Task <object> GetAsync(vBook parameters)
        {
            return(await Uow.Repository <vBook>().AllAsync());

            //throw new NotImplementedException();
        }