public IHttpActionResult Get(long id, string fromDate = "", string toDate = "")
        {
            var from   = string.IsNullOrEmpty(fromDate) ? DateTime.Today : fromDate.ConvertGregorianDateTime();
            var to     = string.IsNullOrEmpty(toDate) ? DateTime.Today : toDate.ConvertGregorianDateTime();
            var result = _shopQueryService.GetShopByMarketerId(id, from, to);

            return(Ok(result));
        }