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

            return(GetCommonRespone());
        }
Exemplo n.º 2
0
 public IActionResult GetDataTransfers()
 {
     return(Json(navigationRepository.GetDataTransfers()));
 }