Example #1
0
 public Departman GetById(int?departmanId)
 {
     return(_departmanDal.Get(i => i.DepartmanId == departmanId));
 }
Example #2
0
 public Departman GetById(int departmanId)
 {
     return(_departmanDal.Get(x => x.Id == departmanId));
 }
Example #3
0
 public Departmanlar GetById(int id)
 {
     return(_departmanDal.Get(x => x.Departman_No == id));
 }