Beispiel #1
0
        public ActionResult <CommonResponeModel> GetDataTransfers()
        {
            Data   = navigationRepository.GetDataTransfers();
            Result = new SuccessResultFactory().Factory(ActionType.Select);

            return(GetCommonRespone());
        }
Beispiel #2
0
 public IActionResult GetDataTransfers()
 {
     return(Json(navigationRepository.GetDataTransfers()));
 }