예제 #1
0
        public HospitalTable FakeHospitalTable1()
        {
            var fake = new HospitalTable()
            {
                Id      = 1,
                Name    = "HOSPITAL1",
                Address = "HOSPITALADDRESS1"
            };

            return(fake);
        }
예제 #2
0
 public Task <bool> UpdateAsync(HospitalTable entity)
 {
     throw new NotImplementedException();
 }
예제 #3
0
 public Task <long> CreateAsync(HospitalTable entity)
 {
     throw new NotImplementedException();
 }