示例#1
0
 public ServiceGymTypesDetails(int serviceGymTypeId)
 {
     _serviceGymTypeRepository = new ServiceGymTypeServiceViewModel();
     InitializeComponent();
     _serviceGymTypeId = serviceGymTypeId;
     GetServiceGymType(_serviceGymTypeId);
     EventsSource();
 }
示例#2
0
 public ServiceGymTypesEdit(int serviceGymTypeId)
 {
     InitializeComponent();
     _serviceGymTypeRepository = new ServiceGymTypeServiceViewModel();
     GetServiceGymTypeEdit(serviceGymTypeId);
     _serviceGymTypeId = serviceGymTypeId;
     EventsSource();
 }
示例#3
0
 public ServiceGymTypesCreate()
 {
     _serviceGymTypeRepository = new ServiceGymTypeServiceViewModel();
     InitializeComponent();
     EventsSource();
 }
示例#4
0
 public ServiceGymTypesList()
 {
     _serviceGymTypeRepository = new ServiceGymTypeServiceViewModel();
     InitializeComponent();
     EnlazarEventos();
 }