Exemplo n.º 1
0
 public Task <bool> UpdateEEntity123Async(EEntity123 eentity123, string modifiedBy)
 {
     return(dbMgr.UpdateWithAuditAsync <EEntity123>(eentity123, modifiedBy));
 }
Exemplo n.º 2
0
        public async Task <EEntity123> CreateEEntity123Async(EEntity123 eentity123, string createdBy)
        {
            eentity123.EEntity123Id = await dbMgr.InsertWithAuditAsync <EEntity123, long>(eentity123, createdBy);

            return(eentity123);
        }