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

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

            await Uow.CommitAsync();
        }
 public async Task <object> GetBy(vAllOtherUser parameters)
 {
     // throw new NotImplementedException();
     return(await Uow.Repository <vAllOtherUser>().FindByAsync(t => t.UserId != parameters.UserId));
 }
 public Task <object> GetAsync(vAllOtherUser parameters)
 {
     throw new NotImplementedException();
 }