0

モバイル サービス アプリケーションで初めての NSpec テストを作成しようとしています。仕様に属性を作成しました。しかし、次の行でその要素にアクセスしようとすると、Visual Studio が変数を認識していないため、インスタンスのパブリック プロパティにアクセスできません。

AppointmentSpec.cs

public class AppointmentSpec : nspec
    {
        private AppointmentDTO _dto = new AppointmentDTO();
        _dto.PatientId = "124234"; // Visual Studio is not regonizing _dto

    }

AppointmentDTO.cs

public class AppointmentDTO
    {
        public string PatientId { get; set; }
       // public string PathwayId { get; set; }
        public string ItemId { get; set; }
        public string Subject { get; set; } //Dr. Visit, labtest, labtest name, follow up, other...
       // public string ProviderName { get; set; }
        public string Location { get; set; }  //clinic, hsopital name, etc
        public string Address { get; set; }  //street address
        public string PhoneNumber { get; set; }
        //to automatically add a corresponding appointment to the provider's calendar
        public bool SetProviderAppointment { get; set; }
        public string ProviderItemId { get; set; }
        public List<string> ProviderItemIds { get; set; } 
        public bool IsVideoCall { get; set; }
        public TimeSpan StartTime { get; set; }
        public TimeSpan EndTime { get; set; }

        public DateScheduleInfo EventDateSchedule { get; set; }

        //public TimeScheduleInfo EventTimeSchedule { get; set; }

        //public void Send(object target, string methodName, params object[] args)
        //{
        //    var properties = GetProperties(target.GetType());
        //    var property = properties.First(p => p.Name == methodName);
        //    if(property == null)
        //        throw new ArgumentException($"{target.GetType()} has no property or method ");
        //    property.SetValue(target, args.First());
        //}

        //private static IEnumerable<PropertyInfo> GetProperties(Type t)
        //{
        //    return t == null ? Enumerable.Empty<PropertyInfo>() : t.GetProperties().Union(GetProperties(t.BaseType));
        //}
    }
4

2 に答える 2

4

クラスのコンストラクター内で割り当てを行います。

public class AppointmentSpec : nspec
    {
        private AppointmentDTO _dto = new AppointmentDTO();

        public AppointmentSpec()
        {
            _dto.PatientId = "124234";
        }

    }
于 2017-01-05T18:18:51.763 に答える
4

_dto無効なコンテキストでアクセスしています。PatientIdいくつかのデータで初期化するつもりなら、これを試してください:

private AppointmentDTO _dto = new AppointmentDTO
{
    PatientId = "124234"
};

MSDNを参照

于 2017-01-05T18:19:14.490 に答える