public UpdatedStatus Update(Employees updatedEmployee)
 {
     return(repository.Update(updatedEmployee));
 }
 public int Add(Employees newEmployee)
 {
     return(repository.Add(newEmployee).Id);
 }