Пример #1
0
 public InstrumentSkill(Instrument instrument, Proficiency proficiency, string background,
     ApplicationUser applicationUser)
 {
     ApplicationUser = applicationUser;
     Instrument = instrument;
     Proficiency = proficiency;
     BackgroundDescription = background;
 }
Пример #2
0
 public NeedBandQuery(ApplicationUser user, Instrument instrument)
 {
     User = user;Instrument = instrument; QueryStartedOn = DateTime.Now;
 }
Пример #3
0
 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;
 }
 public NeedMembersQueryResultViewModel(Band band, Instrument instrument,List<ApplicationUser> users)
 {
     Band = band;
     Instrument = instrument;
     Users = users;
 }