public async Task <int> Save(EmployeeModel1 model)
 {
     try
     {
         return(await sqlDataAccess.Execute("UpdEmployee1 @EmployeeId,@EmployeeName,@Salary,@Role", model));
     }
     catch (Exception ex)
     {
         throw new Exception(ex.Message);
     }
 }
 public Task <EmployeeModel1> Update(EmployeeModel1 model)
 {
     throw new NotImplementedException();
 }