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

            await Uow.CommitAsync();
        }
Exemplo n.º 4
0
 public HashSet <string> UpdateValidation(Upi entity)
 {
     return(ValidationMessages);
 }
Exemplo n.º 5
0
        public async Task AddAsync(Upi entity)
        {
            await Uow.RegisterNewAsync(entity);

            await Uow.CommitAsync();
        }
Exemplo n.º 6
0
 public Task <object> GetBy(Upi parameters)
 {
     throw new NotImplementedException();
 }
Exemplo n.º 7
0
 public async Task <object> GetAsync(Upi parameters)
 {
     // throw new NotImplementedException();
     return(await Uow.Repository <Upi>().AllAsync());
 }