Ejemplo n.º 1
0
 public async Task <JsonResult> MSGetByCategory(string id, string aid, bool ia)
 {
     try {
         var data = MyStoreService.GetBySCIDAID(Guid.Parse(id), Guid.Parse(aid), ia);
         var vms  = MyStoreService.SetSubDatas(data, Guid.Parse(aid));
         return(Success(vms));
     } catch { return(Failed(MessageUtilityService.ServerError())); }
 }