public HashSet <string> DeleteValidation(vCheckLikeUser parameters) { return(ValidationMessages); }
public Task DeleteAsync(vCheckLikeUser parameters) { throw new NotImplementedException(); }
public async Task UpdateAsync(vCheckLikeUser entity) { await Uow.RegisterDirtyAsync(entity); await Uow.CommitAsync(); }
public HashSet <string> UpdateValidation(vCheckLikeUser entity) { return(ValidationMessages); }
public async Task AddAsync(vCheckLikeUser entity) { await Uow.RegisterNewAsync(entity); await Uow.CommitAsync(); }
public async Task <object> GetBy(vCheckLikeUser parameters) { //throw new NotImplementedException(); return(await Uow.Repository <vCheckLikeUser>().FindByAsync(t => t.PostId == parameters.PostId)); }
public Task <object> GetAsync(vCheckLikeUser parameters) { throw new NotImplementedException(); }