๐Ÿ“–
BPackCore CodingConventions
  • ๊ณตํ†ต
  • Desktop Application
    • UI ๋””์ž์ธ ๋ฐ ์‹คํ–‰๊ตฌ์กฐ
    • ๋””๋ ‰ํ† ๋ฆฌ ๊ตฌ์กฐ
    • ๋ช…๋ช…๊ทœ์น™ ๋ฐ ๊ตฌํ˜„
      • Model
      • IPocket
      • Pocket
      • Zipper
      • Carrying
        • Args (FormArgs)
        • MainForm
        • SubForm
        • EditForm
        • StrapControl
        • FileUp/Download
      • Tips
    • ๋‹ค๊ตญ์–ด์ฒ˜๋ฆฌ
  • Web Application - Mobile
    • UI ๋””์ž์ธ
    • ๋””๋ ‰ํ† ๋ฆฌ ๊ตฌ์กฐ
    • ๋ช…๋ช…๊ทœ์น™ ๋ฐ ๊ตฌํ˜„
      • Model
      • Controller
      • View
      • Tips
    • ๋‹ค๊ตญ์–ด์ฒ˜๋ฆฌ
  • Database
    • ๋ช…๋ช…๊ทœ์น™
      • ์šฉ์–ด์‚ฌ์ „
    • SP ๊ตฌํ˜„
      • Template
      • ์ผ๋ จ๋ฒˆํ˜ธ๋ฐœํ–‰
    • ERD ์ž‘์„ฑ๊ทœ์น™ ๋ฐ ์ƒ˜ํ”Œ
  • ์†Œ์Šคํ˜•์ƒ๊ด€๋ฆฌ(Git/Gitlab)
  • WebAPI
Powered by GitBook
On this page
  1. Desktop Application
  2. ๋ช…๋ช…๊ทœ์น™ ๋ฐ ๊ตฌํ˜„
  3. Carrying

Args (FormArgs)

PreviousCarryingNextMainForm

Last updated 5 years ago

Args (FormArgs) ์ƒ์„ฑ

BPack.Carrying.App ํ”„๋กœ์ ํŠธ - ์—…๋ฌด๋ชจ๋“ˆํด๋” โ€“ ํ”„๋กœ๊ทธ๋žจ์ฝ”๋“œํด๋”๋‚ด ์ƒ์„ฑ : BPack.Carrying.App.์—…๋ฌด๋ชจ๋“ˆ.ํ”„๋กœ๊ทธ๋žจ์ฝ”๋“œ.XxxArgs.cs ex) BPack.Carrying.App.MM.PurInbound.PurInboundArgs.cs

namespace BPack.Carrying.App.MM
{
    public class PurInboundArgs : ArgsBase
    {
        public PurInboundModelArgs PurInboundModelArgs { get; set; } = new PurInboundModelArgs();
        public string Select_Main_InTarget_Wh_Cd { get; set; }
        public string Select_Main_InTarget_Loc_Cd { get; set; }
        public string Select_Extra_Bp_Cd { get; set; }
        public string Select_Extra_Bp_Nm { get; set; }
    }
}

Parent Class : ArgsBase Zipper์— ModelArgs๋ฅผ ์ „๋‹ฌํ•˜๊ธฐ ์œ„ํ•ด XxxModelArgs ์†์„ฑ์„ ๋ฐ˜๋“œ์‹œ ์ถ”๊ฐ€ํ•œ๋‹ค. MainForm๊ณผ SubForm์— ํ•„์š”ํ•œ ๊ฐ’์„ ์ฃผ๊ณ  ๋ฐ›๊ธฐ ์œ„ํ•ด ํ•„์š”ํ•œ ์†์„ฑ์„ ์ถ”๊ฐ€ํ•œ๋‹ค.