예제 #1
0
파일: SetUpDB.cs 프로젝트: is12b/TemaXP-G2
        public void DatabaseCreatedTest()
        {
            try
            {
                AuctionContext ac = new AuctionContext();

                ac.Members.ToList();

                Assert.IsTrue(true);
            }
            catch (Exception e)
            {
                e.DebugGetLine();
                Assert.Fail();
            }
        }
예제 #2
0
 public AuctionDb()
 {
     _ac = new AuctionContext();
 }
예제 #3
0
 public AuctionDb(AuctionContext context)
 {
     _ac = context;
 }
예제 #4
0
파일: MemberDb.cs 프로젝트: is12b/TemaXP-G2
 public MemberDb()
 {
     _ac = new AuctionContext();
 }
예제 #5
0
파일: MemberDb.cs 프로젝트: is12b/TemaXP-G2
 public MemberDb(AuctionContext context)
 {
     _ac = context;
 }
예제 #6
0
파일: LotDb.cs 프로젝트: mcboman/TemaXP-G2
 public LotDb()
 {
     _ac = new AuctionContext();
 }
예제 #7
0
파일: LotDb.cs 프로젝트: mcboman/TemaXP-G2
 public LotDb(AuctionContext context)
 {
     _ac = context;
 }
예제 #8
0
 public ArtPieceDb()
 {
     _ac = new AuctionContext();
 }
예제 #9
0
 public ArtPieceDb(AuctionContext context)
 {
     _ac = context;
 }
예제 #10
0
파일: BidDb.cs 프로젝트: mcboman/TemaXP-G2
 public BidDb()
 {
     _ac = new AuctionContext();
 }
예제 #11
0
파일: BidDb.cs 프로젝트: mcboman/TemaXP-G2
 public BidDb(AuctionContext ac)
 {
     _ac = ac;
 }