Beispiel #1
0
        public HttpResponseMessage GetAllActivePromotions()
        {
            var data      = promotionRepository.GetAllActivePromotions();
            var formatter = RequestFormat.JsonFormaterString();

            return(Request.CreateResponse(HttpStatusCode.OK, data, formatter));
        }
Beispiel #2
0
 public List <Promotion> GetAllActivePromotions()
 {
     return(_promotionRepository.GetAllActivePromotions());
 }