コード例 #1
0
ファイル: InstrumentSkill.cs プロジェクト: brgoza/BandAide
 public InstrumentSkill(Instrument instrument, Proficiency proficiency, string background,
     ApplicationUser applicationUser)
 {
     ApplicationUser = applicationUser;
     Instrument = instrument;
     Proficiency = proficiency;
     BackgroundDescription = background;
 }
コード例 #2
0
ファイル: NeedBandQuery.cs プロジェクト: brgoza/BandAide
 public NeedBandQuery(ApplicationUser user, Instrument instrument)
 {
     User = user;Instrument = instrument; QueryStartedOn = DateTime.Now;
 }
コード例 #3
0
ファイル: NeedMemberQuery.cs プロジェクト: brgoza/BandAide
 public NeedMemberQuery(Band band, Instrument instrument)
 {
     Band = band; Instrument = instrument; QueryStartedOn = DateTime.Now;
 }
コード例 #4
0
 public NeedMembersQueryResultViewModel(Band band, Instrument instrument, List <ApplicationUser> users)
 {
     Band       = band;
     Instrument = instrument;
     Users      = users;
 }
コード例 #5
0
 public NeedMembersQueryResultViewModel(Band band, Instrument instrument,List<ApplicationUser> users)
 {
     Band = band;
     Instrument = instrument;
     Users = users;
 }