예제 #1
0
파일: Model.cs 프로젝트: dbarrera/steag
 private void detach_EACS(EACS entity)
 {
     this.SendPropertyChanging();
     entity.UserAccount = null;
 }
예제 #2
0
파일: Model.cs 프로젝트: dbarrera/steag
 private void detach_EACS_VerifiedBy(EACS entity)
 {
     this.SendPropertyChanging();
     entity.VerifiedByUserAccount = null;
 }
예제 #3
0
파일: Model.cs 프로젝트: dbarrera/steag
 private void attach_EACS(EACS entity)
 {
     this.SendPropertyChanging();
     entity.UserAccount = this;
 }
예제 #4
0
파일: Model.cs 프로젝트: dbarrera/steag
 private void attach_EACS_ProcessedBy(EACS entity)
 {
     this.SendPropertyChanging();
     entity.ProcessedByUserAccount = this;
 }
예제 #5
0
파일: Model.cs 프로젝트: dbarrera/steag
 private void attach_EACS(EACS entity)
 {
     this.SendPropertyChanging();
     entity.SARF = this;
 }
예제 #6
0
파일: Model.cs 프로젝트: dbarrera/steag
 private void detach_EACS(EACS entity)
 {
     this.SendPropertyChanging();
     entity.SARF = null;
 }
예제 #7
0
 public void DeleteEacs(EACS eacs)
 {
     DataContext.EACS.DeleteOnSubmit(eacs);
 }
예제 #8
0
 public void AddEacs(EACS eacs)
 {
     DataContext.EACS.InsertOnSubmit(eacs);
 }
예제 #9
0
partial         void UpdateEACS(EACS instance);
예제 #10
0
partial         void InsertEACS(EACS instance);
예제 #11
0
partial         void DeleteEACS(EACS instance);