public bool Add(CustomerDemand item) { if (!string.IsNullOrWhiteSpace(item.Request)) { _uof.CustomerDemandRepository.Add(item); return(_uof.ApplyChange()); } return(false); }
public bool Add(Project item) { if (!string.IsNullOrWhiteSpace(item.ProjectName)) { _uof.ProjectRepository.Add(item); return(_uof.ApplyChange()); } return(false); }
// todo esra burayı tamamla public bool Add(Employee item) { if (!string.IsNullOrWhiteSpace(item.FirstName)) { _uof.EmployeeRepository.Add(item); return(_uof.ApplyChange()); } return(false); }
public bool Add(Customer item) { if (!string.IsNullOrWhiteSpace(item.CustomerName)) { _uof.CustomerRepository.Add(item); return(_uof.ApplyChange()); } return(false); }
public bool Add(State item) { if (!string.IsNullOrWhiteSpace(item.Status)) { _uof.StateRepository.Add(item); return(_uof.ApplyChange()); } return(false); }
public bool Add(Tasks item) { if (!string.IsNullOrWhiteSpace(item.TaskName)) { _uof.TasksRepository.Add(item); return(_uof.ApplyChange()); } return(false); }
public bool Add(ProjectEmployee item) { if (item.EmployeeId != 0 && item.ProjectId != 0) { _uof.ProjectEmployeeRepository.Add(item); return(_uof.ApplyChange()); } return(false); }
public bool Add(EmployeeTasks item) { if (item.EmployeeId != 0 && item.TaskId != 0) { _uof.EmployeeTasksRepository.Add(item); return(_uof.ApplyChange()); } return(false); }