Beispiel #1
0
        //Конструктор
        public OrderViewModel()
        {
            List <string> empty = new List <string>();

            ProductInOrder = new List <ProductsInOrderViewModel>();
            NewPostCities  = new SelectList(RequestToNewPostApi.NewPostCities());
            OrderDate      = DateTime.Now;
        }
Beispiel #2
0
 public NewPostOfficesViewModel(string City)
 {
     NewPostOffices = new SelectList(RequestToNewPostApi.GetRefCity(City), "Value", "Text");
 }