public JsonResult ServerFiltering_GetCurrency()
        {
            DictionaryItemModule  dictionaryModule = new DictionaryItemModule();
            List <DictionaryItem> listCurrenty     = dictionaryModule.ListCurrency();

            return(Json(listCurrenty, JsonRequestBehavior.AllowGet));
        }
Beispiel #2
0
 public DictionaryItemController()
 {
     _dictionaryItemModule = new DictionaryItemModule();
 }
Beispiel #3
0
 public EmployeeController()
 {
     _employeeModule       = new EmployeeModule();
     _dictionaryItemModule = new DictionaryItemModule();
 }