last
This commit is contained in:
@@ -78,7 +78,8 @@ namespace Back.Services
|
||||
public async Task<CODItem?> GetCodByCodID(int CodID, int CompanyID)
|
||||
{
|
||||
return await _CODRepo
|
||||
.Get(w => w.ID == CodID && w.CompanyID == CompanyID && !w.IsDeleted).FirstOrDefaultAsync();
|
||||
.Get(w => w.ID == CodID && w.CompanyID == CompanyID && !w.IsDeleted)
|
||||
.Include(inc=>inc.CODUnit).FirstOrDefaultAsync();
|
||||
}
|
||||
public async Task<bool> ExistCodByCompanyID(int CodID, int CompanyID)
|
||||
{
|
||||
|
Reference in New Issue
Block a user