コード例 #1
0
ファイル: StorageControllerTests.cs プロジェクト: msimon16/P4
 public void Init()
 {
     Mysql.UseMockDatabase();
     Mysql.CheckDatabaseConnection();
     SC = new StorageController();
     SC.GetAll();
     SC.LoadAllProductsDictionary();
     SaleTransaction.SetStorageController(SC);
     SaleTransaction.HideMessageBox = true;
     POS = new POSController(SC);
     Utils.GetIceCreamID();
 }