Example #1
0
        public IActionResult GetQuota(int id)
        {
            //var user = db.MRUsers.GetUser(@"iogin");
            Quota quota = db.GetQuota(id);

            if (quota == null)
            {
                return(NotFound());
            }
            return(Json(quota));
        }